I'm working on a project where all conversions from int to String are done like this:
int i = 5;
String strI = "" + i;
I'm not familiar with Java. Is this usual practice or is something wrong, as I suppose?
home / developersection / forums / how to convert from int to string in java?
int i = 5;
String strI = "" + i;
Anonymous User
04-Aug-2015